home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr49
/
352_01.zip
/
LCBELOW.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-10
|
395b
|
17 lines
// LCBELOW.CPP -
// contains LinkClass::insertBelow()
// routine for inserting a new node below the 'this' node.
#include <stdlib.h>
#include <alloc.h>
#include <iostream.h>
#include "wtwg.h"
#include "dblib.h"
void LinkClass::insertBelow ( LinkClass &existing )
{
pv = existing.pv;
nx = &existing;
pv->nx = this;
nx->pv = this;
}; // end LinkClass::insertBelow()